CodingForums

ساخت وبلاگ
Hello i have here a little Script for https://freebitco.in/?r=11758277 Im new on scripting and not so good on math..... Maybe you Can say me what i Can do better! Thanks for your help Code: var baseBet = '0.00000001',     betOdds = 2.5,     minWait = 800,     maxWait = 1200,     autobetRunning = true,     stopBefore = 2,     betHiLo = true,     $loButton = $('#double_your_btc_bet_lo_button'),     $hiButton = $('#double_your_btc_bet_hi_button'); $('#double_your_btc_payout_multiplier').val(betOdds); function startAutobet(){     console.log('Tuing autobet on...');     resetBet();     $loButton.trigger('click'); } function stopAutobet(){     console.log('Tuing autobet off...');     autobetRunning = false; } function getRandomWait(){     var waitTime = Math.floor(Math.random() * (maxWait-minWait)) + minWait;     console.log('Waiting for ' + waitTime + 'ms before next bet...');     retu waitTime; } function multiplyBet(){     var currentBet = $('#double_your_btc_stake').val(),       CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 267 تاريخ : شنبه 21 بهمن 1396 ساعت: 5:39

Hi, I need some advice. I have a search form and it is able to do a search. But when there is no serach record found, it will show this message "Notice: Undefined variable: retuArray in C:xampphtdocs....". I need advice on how to prevent from showing the error messgae. Thanks PS: I only input the part of the code that I having issue and not the full code. Below is my code for search page Code: <fieldset>     <form name="search" method="post" action="doSearch.php">         <font face="Arial" size="normal">         <table style="width: 50%;">             <tr>                 <td colspan="2" align="center"><h3>Search Car</h3></td>             </tr>             <tr>                 <td>&nbsp;</td>                 <td>&nbsp;</td>   CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 184 تاريخ : شنبه 21 بهمن 1396 ساعت: 5:39

In a Visual Studio Win Form project I have a DGV on a form which displays class objects created from an sql server. To update the data, the user clicks an Update button on the form. This opens a second form that lets the user select column(s) to update. After updating, form2 calls a method in form1 that displays updated object values. To display the updated values, the Update method needs to reference the existing instance of its class. So I need to pass the instance 'this' from form1 to form2, store the object instance, then pass it back to form1 after the update is complete. This is my approach. Code: public partial class Class1: Form     { public Class() {  InitializeComponent(); } public Class1_Load() { Create and populate DGV. } public static void UpdateDGV(object form) { DataGridView dgv = form. } private void Update() { Class2 class2 = new Class2(this); class2.visible = true; } } In Class2 Code: public partial class Class2: Form     {         public Class2(object X)         {             InitializeComponent();                 CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 175 تاريخ : شنبه 21 بهمن 1396 ساعت: 5:39

Hello All, I am brand new to HTML and was hoping for some guidance on formatting a title. My goal is to put each letter of the title in its own box where the boxes are all equal size and equal spacing. Currently the way I am trying to accomplish this, the box fits to the size of the letter it contains. The way I have achieved this is by using span elements for each letter with a CSS class to apply the style. I am guessing there is a more efficient way to do this with the whole word. The code and current display is below. Anything helps, and I would like to avoiid having to do graphic design if possible. <h1><span class='titlebox1'>W</span><span class='titlebox1'>E</span><span class='titlebox1'>B</span></h1> .titlebox1{ border:1px solid black; padding:2px; background-color:white; color:black; width:48px; height:48px; } Attached Thumbnails   CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 140 تاريخ : شنبه 21 بهمن 1396 ساعت: 5:39

Hello guys, I have a webcam which sends every a fixed interval an image to my server. I have a PHP script which individuates the last sent image and renames it "webcam.jpg". Sometimes it happens that the image is not completely uploaded, and I obtain something like this: Schedule_20180205-083406.jpg this image is correctly readable, but it has some holes that are replaced with grey or something similar. What I would like to do is recognizing if the sent image presents this problem, and moving it to a different path. Can I do this with PHP? Thank you:D Attached Images Schedule_20180205-083406.jpg (28.3 KB) CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 230 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Since viewport user-scaleable=0 has no effect with new versions of apple and android (and is complained by validators yet) i've managed to solve it for apple IOS >=10 by using this javascript PHP Code: document.documentElement.addEventListener('touchstart', function (event) {             if (event.touches.length > 1) {                 event.preventDefault();             }         }, false); }  But how to do for android? Still able to pinch zoom. SUCKS. To all who goes "Well usabillity, there is a reason for this, blah blah", no. There is no reason for this. Good css / mediaqueries don't need to be zoomed. CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 159 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Hello everyone, I am pretty new to MySQL, and I have been working with some database reports and got stuck. In attached screenshot, there is part of data I need to work with, so where I am stuck at is: All of this is one object (work_order_unique_id) each of these objects have blocks (masterdata_id) - for each of those blocks there is multiple reasons why it is rejected or accepted and those have multiple records if their status changed over the time. So what I need to create and am stuck at is the final status of the object (work_order_unique_id) which will be rejected if there is atleast 1 rejected latest status in any of the blocks (masterdata_id), if all the latest statuses are accepted, the overall status for the object is accepted. Thank you for any ideas or Idea. Attached Thumbnails   CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 171 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Developing a mobile app about Films using The MovieDB API. I've got the code so it randomises a film, the only problem I have is that it doesn't display on the main page. Code is Code: $(document).on('pageinit', '#home', function(){ // $(document).ready(function(){     console.info('hi');       var latestUrl = 'https://api.themoviedb.org/3/movie/latest?',     singleUrl = 'https://api.themoviedb.org/3/movie/'     mode = 'search/movie?query=',     key = '&api_key=***',     latestId = 0,     targetId = 0;     $.ajax({         url: latestUrl + key ,         dataType: "jsonp",         async: true,         success: function (result) {             console.dir(result);             // ajax.parseJSONP(result);             latestId = result.id;             console.dir(latestId);             targetId = Math.floor(Math.random() * latestId);       &n CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 180 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

I have two stylesheets. My problem is the viewport. For example, This is the web view. This is the mobile viewport, As you can see, the sidebar is hiding the stylesheet 3 and 4. How to fix that? Another stylesheet, this is the web view: This is the mobile view, the video change its position, how to fix that? If i should send the code here, please tell me. Attached Thumbnails         CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 153 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

I have to write this code where only the even numbers are printed from an array. I have gotten then the code to work but it also prints "undefined" and I can't find the problem can anyone please help.

function start(){
var arr = [1,2,3,4,5,6];
var evens = onlyEvens(arr);
println(evens);
}
function onlyEvens(arr)
{
for ( var i = 0; i < arr.length; i++)
{
var cur = arr[i];
if(cur %2==0)
{
println(cur);
}
}
}
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 232 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Re: https://github.com/kaltura/Tags-Editor?files=1

Hi,

What file would I have to edit to automatically strip @gmail.com off any tags and auto update the records? Say a video is tagged with [email protected]…I’d like to replace that tag with xyz. I need this to satisfy a Zoom/Kaltura/Blackboard integration. I need a script to automatically do it ....no submit buttons as such. I tried str_replace but was hoping a PHP Ninja could see the solution. Thanks
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 220 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

I'm pretty much new to this forum and I'm trying to lea Python programming, however I have some strong issues that need fixing, before I can begin with the programming, main one being that any text editor that I download from the world wide web won't run Python 3 code due to some settings that aren't correctly done or applied yet. So I'm asking you, if you are an expert and you've faced something similar, to offer me a solution on how to run a Python 3 code on text editors, such as Atom, Sublime Text, and Brackets? Any help would be greatly appreciated. :)
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 153 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Are you looking to apply your Safety Engineering knowledge to the design of cutting edge systems for the UK’s existing and future submarine fleet? BAE Systems is looking for System/ Safety Engineers to join the Combat Systems Team based in Weymouth, Filton, Frimley or Plymouth. The Combat System encompasses the submarine's ‘fight capability’. This includes its ability to carry out all of the below whilst remaining undetected by other parties: • detect targets above and below the water • circumnavigate the globe underwater • intercept and send communications • load and fire weapons and countermeasures Joining the Combat Systems team will give you a unique and exciting opportunity to apply your knowledge and experience to a range of complex systems and platforms. You could be working on existing submarines such as the in-service Astute class, new classes currently in the design stage, and even future programmes which are looking at concept designs for submarines that won’t be in service for generations. As a Systems / Safety Engineer you will be carrying out a range of Safety Engineering activities and analyses on all areas of the combat system involved. This work will contribute CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 208 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Application - html drafts are ready, 6 pages
Database
Lucene search
Paid membership groups
Payment with PayPal or Tether
Admin pages

The website will be developed more over time.

It is for F&V market thread website but I'm willing to pay if no partners
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 132 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Thank you for the assist - It's a .xls file from constant contact, imported into Google Sheets. People have been importing to Constant Contact for years now, using TWO different birthday fields, causing incorrect searches and major problems for the business. I need to figure out java code to range-lock ONLY the cells in a 40,000 length column which have content, while leaving the other cells open to being pasted into. I then need to apply that code to the range, then cut and paste the other column over. This will remove redundancies while locking existing content. (at least in my head this is the easiest way as I can't seem to find a function that merges the way I need these two columns to) **see image THANK YOU Attached Thumbnails   CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 196 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Google has been saying I have broken links like the one in the title.. Where do these hide at? How do I find them?
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 208 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

I have a page running this https://codepen.io/hi-im-si/pen/uhxFn and I want to know how I can add $ before these numbers?
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 237 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

What are the thing we need to optimize a website. My question is what the things should the developers of a site consider (SEO wise) while they are developing the site? So that there wont be any hassle in the future while
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 146 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Good time of day.
Really need a method!!! how can I define, click on the "like" button from Facebook??????

Just a window with a button and close the window after clicking on the "Like"button.

Who knows, please help.
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 224 تاريخ : جمعه 20 بهمن 1396 ساعت: 16:05

Couldn't find a specific answer to this so thought I'd ask. In short, I have a table that retrieves information from an API, based on data stored in my database and all I want to do is to get a total of certain, not all, columns from that table so that I can use them elsewhere on the site. As an example, let's use the Profit/Loss column and Total Divi. Do I have to store the results as an array so that I can retrieve it elsewhere or is it something different? PHP Code: <?php     $arr = array();         for($x=0;$x<$y;$x++)          {?>             <tr>                 <td class="input"><?php                      if($pri[$x] > $lastprice[$x])                     {   CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 205 تاريخ : سه شنبه 10 بهمن 1396 ساعت: 16:45